dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleString Structure / OracleString Constructor / OracleString Constructor(Byte[],Boolean,Boolean)
The specified byte array.
Specifies whether the byte array is in Unicode encoding or in local encoding.
Specifies if case is ignored in comparisons.

In This Topic
    OracleString Constructor(Byte[],Boolean,Boolean)
    In This Topic
    Initializes a new instance of the OracleString structure with the specified array of bytes.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal bytes() As Byte, _
       ByVal isUnicode As Boolean, _
       ByVal isCaseIgnored As Boolean _
    )
    public OracleString( 
       byte[] bytes,
       bool isUnicode,
       bool isCaseIgnored
    )

    Parameters

    bytes
    The specified byte array.
    isUnicode
    Specifies whether the byte array is in Unicode encoding or in local encoding.
    isCaseIgnored
    Specifies if case is ignored in comparisons.
    See Also